The upstream commit 721aadc140f2 ("man: change quoting style") replaced
single-quoted strings of the form:
'lorem ipsum'
with:
`lorem ipsum'
to prevent the possibility of single quotes appearing at the beginning of
lines, because these will be misinterpreted by troff. However, changes to the
man-page sources in 1.12.9 reintroduced some of these, including one which does
appear at the beginning of a line in mu-query(7):
'"', '*', '(' and ')'. The details are shell-specific. In case of doubt, the
which results in the following warning:
troff:<standard input>:25: warning: macro '"',' not defined
and the omission of that line from the rendered paragraph:
NOTE: if you use queries on the command-line (say, for mu find), you
need to quote any characters that would otherwise be interpreted by the
shell, such as *--analyze option can be useful.
Jeremy Sowden [Mon, 10 Mar 2025 22:07:50 +0000 (22:07 +0000)]
maildir-utils (1.12.9-1) unstable; urgency=medium
* New upstream version 1.12.9
- mu
+ the cleanup phase after indexing is significantly faster now
- mu4e
+ new command `mu4e-analyze-last-query` which shows information about
how the server interpreted the last query.
+ When you ask for bookmarks or maildirs through `mu4e-search-bookmark`
or `mu4e-search-maildir`, unread counts are displayed in the (default)
completions UI next to the maildir or bookmark.
+ A (experimental) "transient" menu has been added.
+ Various Gnus' mailing list commands are now available in the mu4e
message view as well.
+ The mu server uses PCRE-compatible regexps (for addresses), which are
not necessarily compatible with Emacs regular expressions. However,
mu4e can now automatically translate; this depends on the `pcre2el`
package which the user should install when using regular
expression-addresses.
* d/patches
- refresh patches
- add patch to fix single-quoted strings in man-page
- add patch to escape back-slashes in man-page
* d/control
- bump Standards-Version to 4.7.2
Jeremy Sowden [Mon, 3 Jun 2024 21:05:55 +0000 (22:05 +0100)]
maildir-utils (1.12.5-1) unstable; urgency=medium
* New upstream version 1.12.5
- Rework message composition; split off parts into mu4e-draft.el. This
tries harder to maintain the current buffer as expected
- This fixes e.g. emacs-report-bug handling
- New hook mu4e-compose-post-hook for tweaking what mu4e does when
we're done with a message (after sending, cancelling, ...).
By default, it tries to close the frame if needed, and restore
the window configuration. See its docstring.
- Better handle forwarding of encoded messages
- Don't remove non-mu4e completion in composer
- Integrate iCalendar support with message-composition
- Handle mu4e-sent-messages-behavior correctly when it's a function
- Better support NetBSD
- Support some file systems that don't put the file type in d_type
- Improve documentation
* d/patches
- remove upstreamed patch
- add patch to fix RISC-V test failure (Closes: #1071192)